import { GetStaticPropsContext } from 'next'; declare function StaticPages({ locale, pageName, }: { pageName: string; locale: string; }): JSX.Element; export declare function getStaticPaths(): Promise<{ paths: { params: { path: any; }; locale: string; }[]; fallback: string; }>; export declare const getStaticProps: ({ params, locale, }: GetStaticPropsContext) => Promise<{ notFound: boolean; props?: undefined; revalidate?: undefined; } | { props: { pageName: string; locale: string | undefined; }; revalidate: number; notFound?: undefined; }>; export default StaticPages;